home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 49 / Amiga Format CD49 (2000-01-17)(Future Publishing)(GB)(Track 1 of 3)[!][issue 2000-02].iso / -in_the_mag- / program_perfection / exit.h < prev    next >
C/C++ Source or Header  |  1999-12-08  |  240b  |  28 lines

  1. /*
  2.  * exit.h
  3.  *
  4.  * Exit and cleanup stuff
  5.  *
  6.  * $Id :$
  7.  * $Log:$
  8.  *
  9.  */
  10.  
  11.  
  12. #ifndef  EXIT_H
  13. #define  EXIT_H
  14.  
  15. #ifndef  DEFS_H
  16. #include "defs.h"
  17. #endif
  18.  
  19.  
  20. /*
  21.  * Prototypes
  22.  */
  23.  
  24. VOID MyExit( const STRPTR err_message, ... );
  25.  
  26. #endif /* EXIT_H */
  27.  
  28.